const math.intSize
4 uses
math (current package)
const.go#L40: intSize = 32 << (^uint(0) >> 63) // 32 or 64
const.go#L42: MaxInt = 1<<(intSize-1) - 1 // MaxInt32 or MaxInt64 depending on intSize.
const.go#L43: MinInt = -1 << (intSize - 1) // MinInt32 or MinInt64 depending on intSize.
const.go#L52: MaxUint = 1<<intSize - 1 // MaxUint32 or MaxUint64 depending on intSize.
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |